Make to_url public for rustc
authorAlex Crichton <alex@alexcrichton.com>
Wed, 22 Oct 2014 19:12:06 +0000 (12:12 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Wed, 22 Oct 2014 19:12:06 +0000 (12:12 -0700)
src/cargo/util/mod.rs

index 6e14c33856debfd8ada7b21af14ecf213141c86b..72fd9516fddee0e44cacd956bba00684c04cd761 100644 (file)
@@ -15,19 +15,19 @@ pub use self::to_semver::ToSemver;
 pub use self::vcs::{GitRepo, HgRepo};
 pub use self::sha256::Sha256;
 
-pub mod graph;
-pub mod process_builder;
 pub mod config;
-pub mod important_paths;
-pub mod result;
-pub mod toml;
-pub mod paths;
 pub mod errors;
+pub mod graph;
 pub mod hex;
+pub mod important_paths;
+pub mod paths;
+pub mod process_builder;
 pub mod profile;
+pub mod result;
 pub mod to_semver;
-mod pool;
+pub mod to_url;
+pub mod toml;
 mod dependency_queue;
-mod to_url;
-mod vcs;
+mod pool;
 mod sha256;
+mod vcs;